home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / CBASE102.ARJ / BTCURSOR.C < prev    next >
Text File  |  1991-09-23  |  879b  |  29 lines

  1. /*    Copyright (c) 1989 Citadel    */
  2. /*       All Rights Reserved        */
  3.  
  4. /* #ident    "@(#)btcursor.c    1.5 - 91/09/23" */
  5.  
  6. /*man---------------------------------------------------------------------------
  7. NAME
  8.      btcursor - btree cursor
  9.  
  10. SYNOPSIS
  11.      #include <btree.h>
  12.  
  13.      void *btcursor(btp)
  14.      btree_t *btp;
  15.  
  16. DESCRIPTION
  17.      btcursor is used to determine if the cursor for btree btp is
  18.      currently positioned on a key or is null.  If the cursor is set
  19.      to null, the NULL pointer is returned.  If the cursor is
  20.      positioned to a key, a non-NULL value is returned.  If btp does
  21.      not point to a valid open btree, the results are undefined.
  22.      btcursor is a macro.
  23.  
  24. SEE ALSO
  25.      btfirst, btlast, btnext, btgetk, btprev.
  26.  
  27. ------------------------------------------------------------------------------*/
  28. /* btcursor defined in btree.h. */
  29.